home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
pgm_ctrl
/
cuactrls
/
clabel.frm
< prev
next >
Wrap
Text File
|
1995-05-22
|
5KB
|
165 lines
VERSION 2.00
Begin Form frmLabel
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Double
Caption = "Label Demo"
ClientHeight = 2115
ClientLeft = 1095
ClientTop = 2295
ClientWidth = 6555
ClipControls = 0 'False
Height = 2520
Icon = 0
Left = 1035
LinkTopic = "Form2"
ScaleHeight = 2115
ScaleWidth = 6555
Top = 1950
Width = 6675
Begin CUACommand cmdOK
Caption = "OK"
Default = -1 'True
Height = 345
Left = 5160
StandardButton = 1 'OK
TabIndex = 7
Top = 105
Width = 1260
End
Begin CUALabel lbl
Caption = "In addition, it passes messages about drag/drop to the owning container to ease drag and drop programming."
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00000080&
Height = 420
Index = 7
Left = 225
TabIndex = 8
Top = 675
Width = 4740
End
Begin CUALabel lbl
Caption = "CUALabel is fully compatible with the standard label, and has the option of showing text in 3D."
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00000080&
Height = 615
Index = 6
Left = 225
TabIndex = 6
Top = 75
Width = 4740
End
Begin CUALabel lbl
Alignment = 2 'Center
BackStyle = 1 'Opaque
BorderStyle = 8 'Raised single
Caption = "Raised"
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 225
Index = 5
Left = 2610
Pattern = 2 '25% shadow
TabIndex = 5
Top = 1770
Width = 750
End
Begin CUALabel lbl
Alignment = 2 'Center
BackStyle = 1 'Opaque
BorderStyle = 7 'Inset single
Caption = "Inset"
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 225
Index = 4
Left = 2610
Pattern = 2 '25% shadow
TabIndex = 4
Top = 1470
Width = 750
End
Begin CUALabel lbl
Alignment = 2 'Center
BackStyle = 1 'Opaque
BorderStyle = 1 'Fixed Single
Caption = "Normal"
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 240
Index = 3
Left = 2610
Pattern = 2 '25% shadow
TabIndex = 3
Top = 1170
Width = 750
End
Begin CUALabel lbl
Caption = "CUALabel"
Font3D = 2 'Raised
Height = 195
Index = 2
Left = 1500
TabIndex = 2
Top = 1770
Width = 855
End
Begin CUALabel lbl
Caption = "CUALabel"
Font3D = 1 'Inset
Height = 195
Index = 1
Left = 1500
TabIndex = 1
Top = 1470
Width = 855
End
Begin CUALabel lbl
Caption = "CUALabel"
Height = 195
Index = 0
Left = 1500
TabIndex = 0
Top = 1170
Width = 855
End
Begin Image Image1
Height = 315
Left = 990
Picture = CLABEL.FRX:0000
Top = 1125
Width = 360
End
End
Option Explicit
Sub cmdOK_Click ()
Unload Me
End Sub
Sub lbl_Click (Index As Integer)
Image1.Top = lbl(Index).Top - 50
End Sub